home *** CD-ROM | disk | FTP | other *** search
- #############################################################################
- # #
- # MAKE file for INTHOOK example and helper programs #
- # #
- # Written by Walter Oney #
- # Intended for use with Microsoft C 6.0A & MASM 5.1 #
- # #
- #############################################################################
-
- all: inthook.exe int60.com int61.com
-
- inthook.obj: inthook.c
- cl -AS -Zlipe -c -Gsw2 -Ows -W3 inthook.c >inthook.err
-
- inthook.exe: inthook.obj
- link /noe /nod /co /m inthook,inthook,inthook,slibcaw libw,inthook;
- rc inthook.exe
- mapsym inthook
-
- int60.com: int60.asm
- masm int60;
- link int60;
- exe2bin int60 int60.com
-
- int61.com: int61.asm
- masm int61;
- link int61;
- exe2bin int61 int61.com